home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-10-23 | 3.5 KB | 79 lines | [TEXT/ZBAS] |
- '===============================================================================
- '= Copyright 1992 Staz™ Software, Inc. =
- '= All rights reserved =
- '= "Project.GLBL" from PG:PRO =
- '===============================================================================
- ' DIMension your app's globals & equate your app's constants here
- '===============================================================================
- '
- DIM RECORD gClients
- DIM 30 gClientLName$
- DIM 30 gClientFName$
- DIM 20 gClientPhone$
- DIM END RECORD _gClientSz
-
- _maxClients = 1000
-
- DIM gClientData.gClientSz(_maxClients)
- DIM gCurrRecord
- DIM gRecDirty
- _showNewRec = 1
- '
- '{PG1} PG PRO uses this line as a source code marker. Do not remove it.
- '======================================================================
- ' Window Class Reference Numbers
- '======================================================================
- _dataWnd = 1 'Untitled
- _ListWnd = 2 'List
- '----------------------------------------------------------------------
- ' Untitled:Controls & Fields
- '----------------------------------------------------------------------
- _txtFld1class1 = 1 'Text Field
- _txtFld1class2 = 2 'Text Field
- _txtFld1class3 = 3 'Text Field
- _LastNameFld = 4 'Text Field
- _firstNameFld = 5 'Text Field
- _phoneFld = 6 'Text Field
- _PreviousBtn = 7 'Btn:Previous
- _SaveBtn = 8 'Btn:Save
- _NextBtn = 9 'Btn:Next
- _ListBtn = 10 'Btn:Show list
- '----------------------------------------------------------------------
- ' List:Controls & Fields
- '----------------------------------------------------------------------
- _NamesList = 1 'List:Rec# Name
- _NamesListSTR = 4001 'STR# for list
- _scrlBar2WClass2 = 2 'Vert. Scroll Bar
- '======================================================================
- ' Filter & Include Globals
- '======================================================================
- '======================================================================
- ' Menu Equates
- '======================================================================
- _FileMenu = 1 '== File ==
- _NewItem = 1
- _OpenItem = 2
- _CloseItem = 3
- _SaveItem = 5
- _SaveAsItem = 6
- _PageSetupItem = 8
- _PrintItem = 9
- _QuitItem = 11
- _EditMenu = 2 '== Edit ==
- _CantUndoItem = 1
- _undoItem = _cantUndoItem
- _CutItem = 3
- _CopyItem = 4
- _PasteItem = 5
- _ClearItem = 6
- _SelectAllItem = 7
- : '== Apple Menu ==
- _AboutapplicationItem = 1
- '{PG2} PG PRO uses this line as a source code marker. Do not remove it.
- '
- '
- ' DIMs and equates placed here will not be disturbed by PG PRO
- '
- _wndHScroll = 8000
- _wndVScroll = 8001
-